DELETE
/
1
/
usertokens
/
{userToken}
// Initialize the client
var client = new InsightsClient(
  new InsightsConfig("YOUR_APP_ID", "YOUR_API_KEY", "YOUR_APP_ID_REGION")
);

// Call the API
var response = await client.DeleteUserTokenAsync("test-user-1");
This response does not have an example.

Authorizations

x-algolia-application-id
string
header
required

Your Algolia application ID.

x-algolia-api-key
string
header
required

Your Algolia API key with the necessary permissions to make the request. Permissions are controlled through access control lists (ACL) and access restrictions. The required ACL to make a request is listed in each endpoint's reference.

Path Parameters

userToken
string
required

User token for which to delete all associated events.

Required string length: 1 - 129
Example:

"test-user-1"

Response

204

No content.